@charset "utf-8";
body {
    margin: auto;
    padding: auto;
    overflow-x: hidden;
	overflow-y: hidden;
 }
.mid{
    height: 100vh;
    width: 100vw;
}

.back01{
    width: 100vw;
    height: 100vh;
    
    background-image: url(../image/livingroom.webp);
    background-size: cover;
    background-repeat: no-repeat;
    animation: homeimage 1s ;
    /* background-color: blueviolet; */
}

.banner{
    list-style: none;
    position: absolute;
    padding: 0;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 1150px;
    height: 421px;
    animation: imgload1 1s linear;
}

.banner li{
    float: left;
    position: absolute;
    left: 0px;
    transition-duration: 0.4s;
    overflow: hidden;
}

.banner img{
    transition: all .5s;
    filter: grayscale(0.5);
}

.banner img:hover{
    transform: scale(1.1);
    filter: grayscale(0);
}


.banner div{
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background: rgb(123, 168, 175);
    float: left;
    bottom: -100px;
}

@keyframes imgload1{
    0% {
        transform: scale(1.2); /*开始为原始大小*/
        filter: blur(12px);  
  
      }
      75% {
        transform: scale(1);
      }
}

@keyframes homeimage {
    0% {
      transform: scale(1.2); /*开始为原始大小*/
      filter: blur(12px);  

    }
    75% {
      transform: scale(1);
    }
  }
 
  @-webkit-keyframes homeimage /*Safari and Chrome*/ {
    0% {
        transform: scale(1.2); /*开始为原始大小*/
      }
      75% {
        transform: scale(1);
      }
  }